home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Utilities / Winter Shell 1.0d2 / Source / Libraries / MathLib / MathLib.c next >
Encoding:
C/C++ Source or Header  |  1993-06-21  |  188 b   |  15 lines  |  [TEXT/KAHL]

  1. /* 91/11/15 Ari Halberstadt (AIH)
  2.     - Created this file */
  3.  
  4. #include "MathLib.h"
  5.  
  6. long min(long a, long b)
  7. {
  8.     return(a < b ? a : b);
  9. }
  10.  
  11. long max(long a, long b)
  12. {
  13.     return(a > b ? a : b);
  14. }
  15.